home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 April / PCWorld_2008-04_cd.bin / domacnost a kancelar / ubericon / UberIcon-v1.0.3.exe / {app} / Plugins / iZoom / Source / stdafx.h < prev   
C/C++ Source or Header  |  2005-07-30  |  756b  |  30 lines

  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5.  
  6. #pragma once
  7.  
  8. #pragma comment(lib, "gdiplus.lib")
  9.  
  10.  
  11. #define WIN32_LEAN_AND_MEAN        // Exclude rarely-used stuff from Windows headers
  12. #define WINVER  0x0500 // this is needed for UpdateLayeredWindow
  13. #define _WIN32_WINNT 0x0500 // this is needed for the WS_EX_LAYERED
  14.  
  15. // Windows Header Files:
  16.  
  17. #include <windows.h>
  18. #include <tchar.h>
  19. #include <commctrl.h>
  20. #include <winuser.h>
  21. #include <shlobj.h>
  22. #include <stdlib.h>
  23. #include <string>
  24. #include <gdiplus.h>
  25.  
  26. using namespace std;
  27. using namespace Gdiplus;
  28.  
  29. // TODO: reference additional headers your program requires here
  30.